home *** CD-ROM | disk | FTP | other *** search
/ System Booster / System Booster.iso / Texteditors / Write / Module / CURSOR.KEY < prev    next >
Text File  |  1996-09-26  |  521b  |  50 lines

  1. /*
  2.  *   $VER: CURSOR.KEY 4.0039 (22-Mai-95)
  3.  */
  4.  
  5. VERSIONCHECK 40000 "CURSOR.KEY"
  6.  
  7. KEY "control up"
  8.   SCROLLUP;
  9.  
  10. KEY "alt up"
  11.   GOTO _XPOS 1 ;
  12.  
  13. KEY "shift up"
  14.   PAGEUP 90;
  15.  
  16. KEY "up"
  17.   CURSORUP 0;
  18.  
  19. KEY "control down"
  20.   SCROLLDOWN;
  21.  
  22. KEY "alt down"
  23.   GOTO _XPOS _LENGTH ;
  24.  
  25. KEY "shift down"
  26.   PAGEDOWN 90;
  27.  
  28. KEY "down"
  29.   CURSORDOWN 0;
  30.  
  31. KEY "alt right"
  32.   NEXTWORD;
  33.  
  34. KEY "shift right"
  35.   GOTO @EOL @EOL ;
  36.  
  37. KEY "right"
  38.   CURSORRIGHT 0;
  39.  
  40. KEY "alt left"
  41.   LASTWORD;
  42.  
  43. KEY "shift left"
  44.   GOTO @SOL @SOL ;
  45.  
  46. KEY "left"
  47.   CURSORLEFT 0;
  48.  
  49.  
  50.